home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo KNIFFEL-Installationsprogram
- if ~%1~==~~ goto noparam
- if ~%2~==~~ goto noparam
-
- if not exist %1kniffel.exe goto wrongdisk
- if not exist %1cga.dat goto wrongdisk
- if not exist %1ega.dat goto wrongdisk
-
- md %2 >NUL
- copy %1*.* %2 >NUL
- cd %2
- echo KNIFFEL erfolgreich installiert
- type liesmich.txt | more
- goto end
-
- :noparam
- echo Aufruf mit
- echo HINSTALL Quellaufwerk Zielpfad
- echo z.B. HINSTALL A: C:\KNIFFEL
- goto end
-
- :wrongdisk
- echo Laufwerk %1 enthält nicht die KNIFFEL-Diskette!
- goto end
-
- :end